/* __V3D_TEMPLATE__ - template-based file; delete this line to prevent this file from being updated */

body {
    margin: 0px;
    overflow: hidden;
}

.v3d-container {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.fullscreen-button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-size: 100% 100%;
    display: none;
    z-index: 1;
}

.fullscreen-open {
    background-image: url('media/fullscreen_open.svg');
}

.fullscreen-close {
    background-image: url('media/fullscreen_close.svg');
}

.v3d-annotation {
	background-color: #00BBFF;
    text-align: center;
    color: #ffffff;
    padding-top: 0.5%;
    padding-right: 1%;
    padding-left: 1%;
    padding-bottom: 0.5%;
    position: absolute;
    cursor: cell;
    font-size: clamp(0.75rem,1vw,1.9rem);
    border: 3px solid #ffffff;
    animation: pulse 1s infinite alternate;
    box-shadow: 0 0 5px #FFFFFF, 0 0 5px #FFFFFF;
    border-radius: 1px 10px 10px 20px;
    left: 1%;
    top: 1%;
    background-blend-mode: overlay;
	font-weight: lighter;
}

@keyframes pulse {
	0% {box-shadow: 0 0 5px #FFFFFF, 0 0 5px #FFFFFF;}
	100% {box-shadow: 0 0 20px #FFFFFF, 0 0 40px #FFFFFF;}
}

/* removes tap blinking on ios devices */
* { -webkit-tap-highlight-color:rgba(0,0,0,0); }


.v3d-simple-preloader-logo {
    background-image: url('media/Activ3D%20Demo%20Logo%201.0%20Blue%20Short.svg');
}

.v3d-simple-preloader-container {
    --v3d-preloader-img-width: 300px;
    --v3d-preloader-img-height: 120px;
}